-
Notifications
You must be signed in to change notification settings - Fork 262
Upgrade ruzstd
, object
, and addr2line
to the latest versions
#718
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
workingjubilee
merged 1 commit into
rust-lang:master
from
tgross35:upgrade-dependencies
Jun 16, 2025
Merged
Upgrade ruzstd
, object
, and addr2line
to the latest versions
#718
workingjubilee
merged 1 commit into
rust-lang:master
from
tgross35:upgrade-dependencies
Jun 16, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
...nevermind, looks like we do touch the new ruzstd api |
3c98ace
to
91bdd25
Compare
This was referenced Jun 11, 2025
`object` released a breaking change with adjustments to `elf::R_RISCV_GNU_*` and `pe::IMAGE_WEAK_EXTERN_*` constants, as well as a changed API for Mach-O dyld. None of these are relevant to our use. `ruzstd` moved some API around to account for compression support, the only required update for us is to change import paths. `addr2line` only bumped the gimli version, which includes an update that will help us drop the crates.io compiler-builtins dependency from the standard library. Object changelog: https://github.com/gimli-rs/object/blob/master/CHANGELOG.md#0370 Ruzstd changelog: https://github.com/KillingSpark/zstd-rs/releases/tag/v0.8.0 Addr2line changelog: https://github.com/gimli-rs/addr2line/blob/master/CHANGELOG.md#0250-20250611
91bdd25
to
17d49a9
Compare
ruzstd
and object
to the latest versionruzstd
, object
, and addr2line
to the latest versions
Yeah, this seems fine. |
workingjubilee
approved these changes
Jun 16, 2025
tgross35
added a commit
to tgross35/rust
that referenced
this pull request
Jun 16, 2025
Pick up the following pull requests: * ci: remove binary size check (not relevant in rust-lang/rust) <rust-lang/backtrace-rs#710> * Upgrade `ruzstd`, `object`, and `addr2line` to the latest versions <rust-lang/backtrace-rs#718>
Kobzol
added a commit
to Kobzol/rust
that referenced
this pull request
Jun 16, 2025
…ngjubilee Update the `backtrace` submodule Pick up the following pull requests: * ci: remove binary size check (not relevant in rust-lang/rust) <rust-lang/backtrace-rs#710> * Upgrade `ruzstd`, `object`, and `addr2line` to the latest versions <rust-lang/backtrace-rs#718>
rust-timer
added a commit
to rust-lang/rust
that referenced
this pull request
Jun 16, 2025
Rollup merge of #142562 - tgross35:update-backtrace, r=workingjubilee Update the `backtrace` submodule Pick up the following pull requests: * ci: remove binary size check (not relevant in rust-lang/rust) <rust-lang/backtrace-rs#710> * Upgrade `ruzstd`, `object`, and `addr2line` to the latest versions <rust-lang/backtrace-rs#718>
github-actions bot
pushed a commit
to model-checking/verify-rust-std
that referenced
this pull request
Jun 18, 2025
Pick up the following pull requests: * ci: remove binary size check (not relevant in rust-lang/rust) <rust-lang/backtrace-rs#710> * Upgrade `ruzstd`, `object`, and `addr2line` to the latest versions <rust-lang/backtrace-rs#718>
github-actions bot
pushed a commit
to model-checking/verify-rust-std
that referenced
this pull request
Jun 18, 2025
…ngjubilee Update the `backtrace` submodule Pick up the following pull requests: * ci: remove binary size check (not relevant in rust-lang/rust) <rust-lang/backtrace-rs#710> * Upgrade `ruzstd`, `object`, and `addr2line` to the latest versions <rust-lang/backtrace-rs#718>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
object
released a breaking change with adjustments toelf::R_RISCV_GNU_*
andpe::IMAGE_WEAK_EXTERN_*
constants, as well as a changed API for Mach-O dyld. None of these are relevant to our use.ruzstd
moved some API around to account for compression support, the only required update for us is to change import paths.addr2line
only bumped the gimli version, which includes an update that will help us drop the crates.io compiler-builtins dependency from the standard library.Object changelog: https://github.com/gimli-rs/object/blob/master/CHANGELOG.md#0370
Ruzstd changelog: https://github.com/KillingSpark/zstd-rs/releases/tag/v0.8.0
Addr2line changelog: https://github.com/gimli-rs/addr2line/blob/master/CHANGELOG.md#0250-20250611